<H4> Update Time 03/13/11---18:09:42 </H4>
<HR>
<A NAME="Information">
<H2>Information from source codes</H2>
</A>
<PRE>
../src/socketClient.c:

../src/socketServer.c:
</PRE>
<HR>
<A NAME="include">
<H2>Socket.h</H2>
</A>
<PRE>
/*
	Socket.h
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <netdb.h>

/* prototype begin */
extern int  socketServerCreate(char* hostname, u_short port);
extern int  socketMultiServerCreate(char* hostname, u_short port, int max);
extern int  socketClientCreate(char* hostname, u_short port);
/* prototype end */
</PRE>
